get count sql query in php

35

get count sql query in php -

$result=mysql_query("SELECT count(*) as total from Students");
$data=mysql_fetch_assoc($result);
echo $data['total'];

Comments

Submit
0 Comments